home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 26
/
Cream of the Crop 26.iso
/
program
/
ccdl150l.zip
/
IO
/
SCANF.C
< prev
next >
Wrap
C/C++ Source or Header
|
1996-08-08
|
252b
|
13 lines
#include <stdio.h>
#include <time.h>
#include <stdlib.h>
#include <string.h>
#include <libp.h>
int scanf(const char *format, ...)
{
char buf[512];
if (!gets(buf))
return 0;
return _scanf(buf,format,((char *)&format+sizeof(char *)));
}